home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: removeCodeFolding~removes all parent child relationships in
- the active editor.
- @EndTool:
- @Summary: removeCodeFolding~removes all code folding from the active editor
- */
-
- var gOutput = getOutput();
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var lines = editor.getLines();
- lines.promoteAllLines();
- lines.update("Remove Code Folding");
- }
- }
-
- !!/Script
-
-